home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / util4 / 0utils.lha / 0Utils / Open.doc < prev    next >
Text File  |  1995-09-05  |  986b  |  65 lines

  1.  
  2.  
  3.  
  4.     NAME
  5.     Open
  6.  
  7.     SYNOPSIS
  8.     Open -  Open a filehandle  - Requires v37
  9.  
  10.     INPUTS
  11.     "FILE/A,READ/S,WRITE/S"
  12.  
  13.     DESCRIPTION
  14.  
  15.     Openes an AmigaDOS Filehandle on a
  16.     certain file. the filehandle must be
  17.     closed with 'Close'.
  18.     Open is necessary for all filehandle
  19.     commands like ReadLn, WriteLn or
  20.     Close.
  21.  
  22.      RESULT
  23.     The BPTR to the created Filehandle
  24.     
  25.  
  26.     
  27.         
  28.  
  29.     NOTES
  30.     * CLI - only
  31.  
  32.     * should compile with SAS-C
  33.     
  34.  
  35.     ! Open is highly dangerous! Do not Use it, if !
  36.     ! U do not exactly know what U are doing!     !
  37.     
  38.  
  39.     BUGS
  40.  
  41.  
  42.     EXAMPLES
  43.  
  44.     > set fh `Open T:writetest WRITE`
  45.     > WriteLn $fh This is a test
  46.     > Close $fh
  47.     > Unset fh
  48.     > cat T:writetest
  49.       This is a test
  50.     
  51.  
  52.     HISTORY
  53.  
  54.     21-02-95 b_noll created
  55.     21-02-95 b_noll added version/format-prefix/offset
  56.     20-03-95 b_noll corrected output
  57.     20-03-95 b_noll added args diagnostics
  58.     19-08-95 b_noll created .data file
  59.     
  60.  
  61.     AUTHOR
  62.     Bernd Noll, Brunnenstrasse 55, D-67661 Kaiserslautern
  63.     noll@student.uni-kl.de
  64.  
  65.